home *** CD-ROM | disk | FTP | other *** search
/ The PC-SIG Library 10 / The PC-Sig Library - Shareware for the IBM PC and Compatibles (PC-SIG)(Tenth Edition Disks 1-2804)(1991).iso / PC_SIGCD / 07 / 9 / DISK0797.ZIP / START.BAT < prev    next >
DOS Batch File  |  1991-02-05  |  2KB  |  55 lines

  1. echo off
  2. echo  
  3. :BEGINNING
  4. cls
  5. xcol 7 1 4
  6. echo   
  7. echo   
  8. echo   
  9. echo   
  10. echo   ┌───────────────────────────────────────────────────────────────────────┐
  11. echo   │                                                                       │
  12. echo   │               Test series of programs startup batch file              │
  13. echo   │                                                                       │
  14. echo   │  To start the introduction (INTRO.TST) in TRAIN mode, enter     I     │
  15. echo   │  INTRO.TST is an ASCII file and can be printed                        │
  16. echo   │                                                                       │
  17. echo   │  To start the documentation (DOC.TST) in TRAIN mode, enter      D     │
  18. echo   │  DOC.TST is encoded and CANNOT be printed                             │
  19. echo   │                                                                       │
  20. echo   │  To start the sample (SAMPLE.TST) in train mode, enter          S     │
  21. echo   │  SAMPLE.TST is an ASCII file and can be printed                       │
  22. echo   │                                                                       │
  23. echo   │  To exit from the batch file, enter                             X     │
  24. echo   │                                                                       │
  25. echo   ├───────────────────────────────────────────────────────────────────────┤
  26. echo   │                                                                       │
  27. echo   │      The printable documentation is located in the file  DOC.TXT      │
  28. echo   │                                                                       │
  29. echo   └───────────────────────────────────────────────────────────────────────┘
  30. echo    
  31. echo    
  32. :AGAIN
  33. keypress x X s S I i D d
  34. if errorlevel 7 goto DOC
  35. if errorlevel 5 goto INTRO
  36. if errorlevel 3 goto SAMPLE
  37. if errorlevel 1 goto OUT
  38. goto AGAIN
  39. :DOC
  40. TRAIN DOC
  41. goto BEGINNING
  42. :INTRO
  43. TRAIN INTRO
  44. goto BEGINNING
  45. :SAMPLE
  46. TRAIN SAMPLE
  47. goto BEGINNING
  48. :OUT
  49. xcol 1 0 0
  50. echo  
  51. echo  
  52. cls
  53. echo                 To rerun the batch file, enter START.
  54. echo    
  55.